home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_mysql.idb / usr / freeware / include / mysql / mysql_version.h.z / mysql_version.h
C/C++ Source or Header  |  2002-10-07  |  580b  |  23 lines

  1. /* Copyright Abandoned 1996, 1999, 2001 MySQL AB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3.  
  4. /* Version numbers for protocol & mysqld */
  5.  
  6. #ifdef _CUSTOMCONFIG_
  7. #include <custom_conf.h>
  8. #else
  9. #define PROTOCOL_VERSION        10
  10. #define MYSQL_SERVER_VERSION        "3.23.52"
  11. #define MYSQL_SERVER_SUFFIX        ""
  12. #define FRM_VER                6
  13. #define MYSQL_VERSION_ID        32352
  14. #define MYSQL_PORT            3306
  15. #define MYSQL_UNIX_ADDR            "/tmp/mysql.sock"
  16. #define MYSQL_CONFIG_NAME        "my"
  17.  
  18. /* mysqld compile time options */
  19. #ifndef MYSQL_CHARSET
  20. #define MYSQL_CHARSET            "latin1"
  21. #endif
  22. #endif
  23.